home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / amiga / modu.a < prev    next >
Text File  |  1994-02-01  |  267b  |  20 lines

  1.  
  2.         ;   MODU.A
  3.         ;
  4.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  5.         ;
  6.         ;   D0/D1 -> 32 signed modulus
  7.         ;   32/32 -> 32 signed modulus
  8.  
  9.         section text,code
  10.  
  11.         xdef    __modu
  12.         xref    __divu
  13.  
  14. __modu:     bsr    __divu
  15.         move.l    D1,D0        ; modulus return
  16.         rts
  17.  
  18.         END
  19.  
  20.